MoodEvaluationScreen

fun MoodEvaluationScreen(modifier: Modifier = Modifier, viewModel: EvaluationMenuViewModel = hiltViewModel(), openDrawer: () -> Unit, onNavigateToDaily: () -> Unit, onNavigateToBiWeekly: () -> Unit)

Composable that displays the main Mood Evaluation screen with a top app bar and navigation options.

Parameters

modifier

Modifier for customizations to the layout.

viewModel

The ViewModel to provide the UI state for mood evaluations.

openDrawer

A function to open the navigation drawer.

onNavigateToDaily

A function to navigate to the daily evaluation screen.

onNavigateToBiWeekly

A function to navigate to the bi-weekly evaluation screen.